메인 콘텐츠로 건너뛰기
GET
/
payments
/
{id}
Get a payment
curl --request GET \
  --url https://your_a2_service/payments/{id} \
  --header 'Authorization: Bearer <token>'
{
  "amount": 123,
  "owner_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "payment_method": "<string>",
  "status": "charged",
  "created_at": "2023-11-07T05:31:56Z",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "no": 123,
  "updated_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.aiderx.io/llms.txt

Use this file to discover all available pages before exploring further.

인증

Authorization
string
header
필수

The access token received from the authorization server in the OAuth 2.0 flow.

경로 매개변수

id
string<uuid>
필수

결제 ID

응답

Successful Response

결제 엔티티 스키마

amount
integer
필수

결제 금액

owner_id
string<uuid>
필수

소유자 id

payment_method
string
필수

결제 방법. 예) card

status
enum<string>
필수

현재 결제 상태

사용 가능한 옵션:
charged,
refunding,
refunded
created_at
string<date-time> | null

엔티티가 생성된 날짜와 시간입니다.

id
string<uuid> | null

결제 정보 id

no
integer | null

결제 정보의 순번

updated_at
string<date-time> | null

엔티티가 마지막으로 수정된 날짜와 시간입니다.